Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / clients / {id} / nodes / {node}

Unregister cluster node from this client

Path parameters:
realm - realm name (not id!)
id - id of client (not client-id)
node -

Resource Methods
Method Summary
NameDescription
DELETE /admin/realms/{realm}/clients/{id}/nodes/{node}Unregister cluster node from this client

Method Detail

DELETE /admin/realms/{realm}/clients/{id}/nodes/{node}

Unregister cluster node from this client

HTTP Example:
DELETE /admin/realms/{realm}/clients/{id}/nodes/{node}
API Example:

ClientResource.unregisterNode({'realm': /* name realm name (not id!) */,
  'id': /* id id of client (not client-id) */,
  'node': /* node */});

Output:
void

Keycloak REST Services 1.5.0-Final